home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / planetkit / amigaexe / irc / rexx / sendbrowser.amirx < prev    next >
Text File  |  1996-03-28  |  1KB  |  38 lines

  1. /**************************************************************************/
  2. /* Script to give the URL of the URL-Grabber of AmIRC to your currently   */
  3. /* running WWW-Browser. Currently supported are IBrowse, AWeb and AMosaic */
  4. /* If you miss any features, or find any bugs, please report them to      */
  5. /* the address below. If you make any changes to the script, please       */
  6. /* send a copy of it to me.                                               */
  7. /* Also it would be nice if you would send me a mail if you use this      */
  8. /* and find it useful :-)                                                 */
  9. /* This script is $Ver: 1.0                                               */
  10. /* Author: Markus 'lammy' Lamers; E-Mail: markus.lamers@tu-clausthal.de   */
  11. /*         thanx to Peter "Stoebi" Schulz for his help                    */
  12. /**************************************************************************/
  13.  
  14. parse arg args
  15. options results
  16.  
  17. if show('P','IBROWSE.1') then do
  18.     address 'IBROWSE.1'
  19.     GOTOURL args
  20.     Exit
  21. end
  22.  
  23. if show('P','AWEB.1') then do
  24.     address 'AWEB.1'
  25.     OPEN args
  26.     Exit
  27. end
  28.  
  29. if show('P','AMOSAIC.1') then do 
  30.     address 'AMOSAIC.1'
  31.     JUMP URL args
  32.     Exit
  33. end
  34.  
  35. 'echo You must start your WWW-Browser first ;)'
  36.  
  37. EXIT 10
  38.